10
How do I bring/ensure a specified face to the front

TreeCube1->IdentifyFace = Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceFrame | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceName | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceCaption;
TreeCube1->VisibleFace = Extreecubelib_tlb::FaceEnum::exTopFace;

9
How do I bring/ensure a specified face to the front

TreeCube1->IdentifyFace = Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceFrame | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceName | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceCaption;
TreeCube1->EnsureVisibleFace(Extreecubelib_tlb::FaceEnum::exTopFace,TNoParam());

8
It sounds like the BackColor property does nothing

TreeCube1->BackColor = RGB(255,0,0);
TreeCube1->Transparent = 50;

7
Is there any property to identify the faces I can fill in

TreeCube1->IdentifyFace = Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceFrame | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceName | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceCaption;

6
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
TreeCube1->OnMouseWheel = Extreecubelib_tlb::OnMouseWheelEnum::exMouseWheelNothing;

5
Can I navigate through the faces 0 to 3 only, even with the keyboard
TreeCube1->EnsureVisibleFaces = L"0,1,2,3";
TreeCube1->AllowRotate = Extreecubelib_tlb::RotateEnum::exRotateRight | Extreecubelib_tlb::RotateEnum::exRotateLeft;
TreeCube1->IdentifyFace = Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceFrame | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceName | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceCaption;
TreeCube1->EnsureVisibleFaceOnDblClick = false;

4
It sounds like the BackColor property does nothing

TreeCube1->BackColor = RGB(255,0,0);
TreeCube1->ShowAs = Extreecubelib_tlb::ShowAsEnum::exOrthographic;
TreeCube1->AlwaysEnsureVisibleFace = Extreecubelib_tlb::EnsureVisibleFaceEnum::exDisableEnsureVisibleFace;
TreeCube1->RotX = 0.328184;
TreeCube1->RotY = 0.967723;

3
Is it possible to let the control shows/rotates just the left/right side
TreeCube1->AllowRotate = Extreecubelib_tlb::RotateEnum::exRotateRight | Extreecubelib_tlb::RotateEnum::exRotateLeft;

2
How can I disable changing the view if the user presses SPACE or digit keys
TreeCube1->AllowEnsureVisibleFaceOnKey = Extreecubelib_tlb::AllowEnsureVisibleFaceOnKeyEnum::exEnsureVisibleFaceOnKeyDisabled;

1
I've noticed that I can not show the part of the control as I drag, once I release the mouse button

TreeCube1->IdentifyFace = Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceFrame | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceName | Extreecubelib_tlb::IdentifyFaceEnum::exIdentifyFaceCaption;
TreeCube1->AlwaysEnsureVisibleFace = Extreecubelib_tlb::EnsureVisibleFaceEnum::exDisableEnsureVisibleFace;